home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH40.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-10  |  140 b   |  11 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.  int counter;
  5.  for (counter = 0; counter <= 10; counter++)
  6.  printf("counter = %d\n", counter);
  7.  }
  8.  
  9.  
  10.  
  11.